projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2c974b1
)
(make_gap) [DOUG_LEA_MALLOC]: Call make_gap_smaller if
author
Andrew Innes
<andrewi@gnu.org>
Tue, 11 Dec 2001 21:13:53 +0000
(21:13 +0000)
committer
Andrew Innes
<andrewi@gnu.org>
Tue, 11 Dec 2001 21:13:53 +0000
(21:13 +0000)
arg is negative.
src/ChangeLog
patch
|
blob
|
history
src/insdel.c
patch
|
blob
|
history
diff --git
a/src/ChangeLog
b/src/ChangeLog
index 1f3feaadc04dde0af330181c5181b04341fe6bc6..d20e0eea92ad68348c8801de4796cd7b6ce850fc 100644
(file)
--- a/
src/ChangeLog
+++ b/
src/ChangeLog
@@
-1,3
+1,8
@@
+2001-12-11 Andrew Innes <andrewi@gnu.org>
+
+ * insdel.c (make_gap) [DOUG_LEA_MALLOC]: Call make_gap_smaller if
+ arg is negative.
+
2001-12-11 Richard M. Stallman <rms@gnu.org>
* m/hp800.h: Split the __hpux conditional into the parts
diff --git
a/src/insdel.c
b/src/insdel.c
index db5cd98a4870643d90d533193348965b57d1a0a6..efc6aa44b6e571d08874bd811869b675086bd845 100644
(file)
--- a/
src/insdel.c
+++ b/
src/insdel.c
@@
-632,7
+632,7
@@
make_gap (nbytes_added)
{
if (nbytes_added >= 0)
make_gap_larger (nbytes_added);
-#if defined
(USE_MMAP_FOR_BUFFERS) || defined (REL_ALLOC)
+#if defined
USE_MMAP_FOR_BUFFERS || defined REL_ALLOC || defined DOUG_LEA_MALLOC
else
make_gap_smaller (-nbytes_added);
#endif